home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / WebSites / MailingLists / AMOSLIST.0599 / 000034_nobody_Sat May 8 02:39:37 1999.msg < prev    next >
Internet Message Format  |  1999-06-01  |  4KB

  1. Received: from onelist.com (pop.onelist.com [209.207.164.223])
  2.     by osf1.gmu.edu (8.8.8/8.8.8) with SMTP id CAA17031
  3.     for <mcox4@osf1.gmu.edu>; Sat, 8 May 1999 02:39:37 -0400 (EDT)
  4. Received: (qmail 10393 invoked by alias); 8 May 1999 06:39:39 -0000
  5. Received: (qmail 10371 invoked from network); 8 May 1999 06:39:37 -0000
  6. Received: from unknown (HELO mail.eisa.net.au) (203.166.224.55) by pop.onelist.com with SMTP; 8 May 1999 06:39:37 -0000
  7. Received: from pppm01-49.eisa.net.au (root@pppm01-49.eisa.net.au [202.139.14.49]) by mail.eisa.net.au (8.8.7/8.8.3) with ESMTP id QAA18675 for <amos-list@onelist.com>; Sat, 8 May 1999 16:38:22 +1000
  8. From: "Rick Pezzimenti" <rickp@eisa.net.au>
  9. Organization: Kramerica Indutries
  10. Date: 25 Aug 98 16:57:15 +1000
  11. Message-Id: <OUT-35E2ECEB.MD-1.2.rickp@eisa.net.au>
  12. In-Reply-To: <199905080628.DAA19818@bianca.scs.com.br>
  13. To: amos-list@onelist.com
  14. X-Mailer: MicroDot-II/AmigaOS NC 1.2 [NC2-#000004F2]
  15. Mailing-List: list amos-list@onelist.com; contact amos-list-owner@onelist.com
  16. Delivered-To: mailing list amos-list@onelist.com
  17. Precedence: bulk
  18. List-Unsubscribe: <mailto:amos-list-unsubscribe@ONElist.com>
  19. Reply-to: amos-list@onelist.com
  20. Mime-Version: 1.0
  21. Content-Type: multipart/mixed; boundary="=_=8<==MD235E2ECEB-170D59A4==8<=_="
  22. Subject: Re: [amos-list] deadly question
  23. Status: O
  24. X-Status: 
  25.  
  26. This is a MIME encoded multipart message. The fact that you are reading
  27. this means you don't have a MIME capable mail program. You might still
  28. be able to read part of the mail's content, but some of it may require
  29. a MIME capable mail reader to decode. Following are some URLs where
  30. you can find MIME-capable mail programs for common platforms:
  31.  
  32.   Amiga............: MicroDot-II  http://www.vapor.com/
  33.   Unix.............: Metamail     ftp://ftp.bellcore.com/nsb/
  34.   Windows/Macintosh: Eudora       http://www.qualcomm.com/
  35.  
  36. General info about MIME can be found at:
  37.  
  38.   http://www.cis.ohio-state.edu/hypertext/faq/usenet/mail/mime-faq/top.html
  39.  
  40. --=_=8<==MD235E2ECEB-170D59A4==8<=_=
  41. Content-Type: text/plain; charset=us-ascii
  42. Content-Transfer-Encoding: 7bit
  43.  
  44. I did something similar to this, where i had a map editor for a game
  45. which stored the sprite image of each map location to a file, so in my
  46. game, i simply loaded this file and the map appeared.  I have attached
  47. a sample of the code in which i used to load and save.  Mine only
  48. writes 1 variable but it would be easy to adapt it to accept more.
  49.  
  50. Hope this helps
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59. > From: erico@www.tecnopro.com.br
  60. >     Hello All
  61. >     Can you help me? 
  62. >     For example , I have a set of variables values
  63. >     a=10
  64. >     b=40
  65. >     c=xx
  66. >     I wanna save those values to disk , like a characher save on a RPG
  67. >     Does anybody have a solution?
  68. >     Please help Im desperate!
  69. > ------------------------------------------------------------------------
  70. > Join the Star Wars craze!
  71. > http://www.onelist.com
  72. > Set up your Star Wars list at ONElist.
  73. > ------------------------------------------------------------------------
  74. > Official AMOS WWW: http://members.xoom.com/AmosFactory/front.html
  75.  
  76. --=_=8<==MD235E2ECEB-170D59A4==8<=_=
  77. Content-Type: text/plain; charset=us-ascii; name="example.asc"
  78. Content-Transfer-Encoding: plain (7/8 bit)
  79. Content-Disposition: attachment; filename="example.asc"
  80. X-MD2-FilePath: Ram Disk:example.asc
  81.  
  82. SVE:
  83. Dir$="aamystuff:adventure/"
  84. Cls 0 : Input "enter name of file";NAME$
  85. Open Out 1,NAME$
  86. For ZZ=0 To 39
  87.    For XZ=0 To 39
  88.       SS$=Str$(ICONIMAGE(XZ,ZZ))
  89.       Print #1,SS$
  90.    Next 
  91. Next 
  92. Close 1
  93. Return 
  94.  
  95.  
  96.  
  97. LOD:
  98. Dir$="aamystuff:adventure/"
  99. Cls 0 : Input "enter name of file";NAME$
  100. Open In 1,NAME$
  101. For ZZ=0 To 39
  102.    For XZ=0 To 39
  103.       Input #1,SS$
  104.       ICONIMAGE(XZ,ZZ)=Val(SS$)
  105.      Next 
  106. Next 
  107. Close 1
  108. Gosub REDRAW
  109. Return 
  110.  
  111. --=_=8<==MD235E2ECEB-170D59A4==8<=_=--
  112. (end of MIME multipart message)